home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 28
/
Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso
/
Aminet
/
dev
/
basic
/
ace_final.lha
/
ACE_GPL_Release
/
include
/
ace
/
limits.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1996-08-29
|
410 b
|
17 lines
#ifndef LIMITS_H
#define LIMITS_H 1
/* maxima & minima */
#define MaxInt 2147483647
#define MinInt -2147483648
#define MaxShort 32767
#define MinShort -32767 /* NOT -32768, due to the way ACE
** classifies integers during
** compilation.
*/
#define MaxReal 9.22337177E+18
#define MinReal -9.22337177E+18
#define MAXSTRINGLEN 1024&
#endif